home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_InetAddrHostNum.c,v < prev    next >
Text File  |  1988-11-21  |  2KB  |  83 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.21.09.10.12;  author mendel;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Formed from net.c of src/lib/old/net.c.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/* 
  27.  * Net_InetAddrHostNum.c --
  28.  *
  29.  *    Extract the host part of an internet address.
  30.  *
  31.  * Copyright 1987 Regents of the University of California
  32.  * All rights reserved.
  33.  * Permission to use, copy, modify, and distribute this
  34.  * software and its documentation for any purpose and without
  35.  * fee is hereby granted, provided that the above copyright
  36.  * notice appear in all copies.  The University of California
  37.  * makes no representations about the suitability of this
  38.  * software for any purpose.  It is provided "as is" without
  39.  * express or implied warranty.
  40.  */
  41.  
  42. #ifndef lint
  43. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE (Berkeley)";
  44. #endif not lint
  45.  
  46.  
  47. #include "sprite.h"
  48. #include "net.h"
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * Net_InetAddrHostNum --
  54.  *
  55.  *    Return the host portion of an Internet address.
  56.  *    Handles class A/B/C network formats.
  57.  *
  58.  * Results:
  59.  *    The host portion an IP address.
  60.  *
  61.  * Side effects:
  62.  *    None.
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. unsigned int
  68. Net_InetAddrHostNum(inetAddr)
  69.     Net_InetAddress inetAddr;
  70. {
  71.     register Net_InetAddress i = Net_NetToHostInt(inetAddr);
  72.  
  73.     if (NET_INET_CLASS_A_ADDR(i)) {
  74.     return((i) & NET_INET_CLASS_A_HOST_MASK);
  75.     } else if (NET_INET_CLASS_B_ADDR(i)) {
  76.     return((i) & NET_INET_CLASS_B_HOST_MASK);
  77.     } else {
  78.     return((i) & NET_INET_CLASS_C_HOST_MASK);
  79.     }
  80. }
  81.  
  82. @
  83.